* {
 padding: 0;
 margin: 0;
 box-sizing: border-box;
 font-family: 'Quicksand', sans-serif;  
}
body{
    width: 100%;
    height: 100vh;
}
.container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px 100px;
}
.container:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("Images/TIK BALUSTRADE LOGO 400..jpg") no-repeat center;
    background-size: cover;
    z-index: -1;
    filter: blur(70px);
}

.contact-box{
    max-width: 850px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #ec8484;
    box-shadow: 0px 0px 19px 5px rgba(0, 0, 0, 0.19);
}
.right{
    padding: 25px 40px;
}
h2{
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
    background-color: hsl(0, 31%, 93%);
}

h2:after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 4px;
    width: 50px;
    border-radius: 2px;
    background-color: #ff0000;
}

.field{
    width: 100%;
    padding: 0.5rem 1rem;
    outline: none;
    border: 2px solid rgba(0, 0, 0, 0);
    background-color: rgba(241, 191, 191, 0.6);
    font-size: 1.1rem;
    margin-bottom: 22px;
    transition: 3s;
}
.field:hover{
    background-color: rgba(0, 0, 0, 0.1);
}
.field:focus{
    background-color: #fff;
    border: 2px solid hsla(352, 97%, 47%, 0.925);
}
.area{
    min-height: 150px;
}
.btn{
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 1.1rem; 
  background-color: hsl(0, 67%, 71%);
  cursor: pointer;
  outline: rgb(7, 7, 7);
  border: none;
  color: #fff;
  transition: .3s;
}

.btn:hover{
    background-color: hwb(352 2% 3%);
}

@media screen and (max-width: 600px) {
   .contact-box{
       grid-template-columns: 1fr;
    } 

   .right{
    height: 200px;
   }
}
